NAnt
Help
Task Reference
<csc> |
v0.85 |
[This is preliminary documentation and subject to change.]
Compiles C# programs.
| Attribute | Type | Description | Required |
|---|---|---|---|
| checked | bool | Specifies whether an integer arithmetic statement that is not in the scope of the checked or unchecked keywords and that results in a value outside the range of the data type should cause a run-time exception. The default is false. |
False |
| codepage | string | Specifies the code page to use for all source code files in the compilation. | False |
| doc | file | The name of the XML documentation file to generate. | False |
| noconfig | bool | Instructs the compiler not to use implicit references to assemblies. The default is false. | False |
| nostdlib | bool | Instructs the compiler not to import mscorlib.dll. The default is false. | False |
| optimize | bool | Specifies whether the compiler should perform optimizations to the make output files smaller, faster, and more effecient. The default is false. | False |
| unsafe | bool | Instructs the compiler to allow code that uses the unsafe keyword. The default is false. |
False |
| warninglevel | string | Specifies the warning level for the compiler to display. Valid values are 0-4. The default is 4. |
False |
| output | file | The output file created by the compiler. | True |
| target | string | Output type. Possible values are exe, winexe, library or module. |
True |
| debug | bool | Generate debug output. The default is false. | False |
| define | string | Define conditional compilation symbol(s). | False |
| failonerror | bool | Determines if task failure stops the build, or is just reported. The default is true. | False |
| if | bool | If true then the task will be executed; otherwise, skipped. The default is true. | False |
| main | string | Specifies which type contains the Main method that you want to use as the entry point into the program. | False |
| nowarn | string | Deprecated. Specifies a comma-separated list of warnings that should be suppressed by the compiler. | False |
| rebuild | bool | Instructs NAnt to recompile the output file regardless of the file timestamps. | False |
| timeout | int | The maximum amount of time the application is allowed to execute, expressed in milliseconds. Defaults to no time-out. | False |
| unless | bool | Opposite of if. If false then the task will be executed; otherwise, skipped. The default is false. |
False |
| verbose | bool | Determines whether the task should report detailed build log messages. The default is false. | False |
| warnaserror | bool | Instructs the compiler to treat all warnings as errors. The default is false. | False |
| win32icon | file | Icon to associate with the application. | False |
| Attribute | Type | Description | Required |
|---|---|---|---|
| exename | string | The name of the executable that should be used to launch the external program. | False |
| noconfig | bool | Instructs the compiler not to use implicit references to assemblies. The default is false. | False |
| nostdlib | bool | Instructs the compiler not to import mscorlib.dll. The default is false. | False |
| supportsnowarnlist | bool | Indicates whether the compiler for a given target framework supports a command line option that allows a list of warnings to be suppressed. The default is false. | False |
| supportspackagereferences | bool | Indicates whether package references are supported by compiler for a given target framework. The default is false. | False |
| supportswarnaserrorlist | bool | Indicates whether the compiler for a given target framework supports the "warnaserror" option that takes a list of warnings. The default is false. | False |
| useruntimeengine | bool | Specifies whether the external program should be executed using a runtime engine, if configured. The default is false. | False |
Contains a collection of CompilerWarning elements.
Contains a strongly typed collection of Package objects.
Contains a strongly typed collection of <resourcefileset> objects.
Contains a collection of <arg> elements.
Compile helloworld.cs to helloworld.exe.
<csc target="exe" output="HelloWorld.exe" debug="true">
<nowarn>
<!-- do not report warnings for missing XML comments -->
<warning number="0519" />
</nowarn>
<sources>
<include name="**/*.cs" />
</sources>
<resources dynamicprefix="true" prefix="HelloWorld">
<include name="**/*.resx" />
</resources>
<references>
<include name="System.dll" />
<include name="System.Data.dll" />
</references>
</csc>